home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / 26 web services / advancedws / global.asax.vb < prev    next >
Encoding:
Text File  |  2002-03-01  |  1.8 KB  |  60 lines

  1. Imports System.Web
  2. Imports System.Web.SessionState
  3.  
  4. Public Class Global
  5.     Inherits System.Web.HttpApplication
  6.  
  7. #Region " Component Designer Generated Code "
  8.  
  9.     Public Sub New()
  10.         MyBase.New()
  11.  
  12.         'This call is required by the Component Designer.
  13.         InitializeComponent()
  14.  
  15.         'Add any initialization after the InitializeComponent() call
  16.  
  17.     End Sub
  18.  
  19.     'Required by the Component Designer
  20.     Private components As System.ComponentModel.IContainer
  21.  
  22.     'NOTE: The following procedure is required by the Component Designer
  23.     'It can be modified using the Component Designer.
  24.     'Do not modify it using the code editor.
  25.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  26.         components = New System.ComponentModel.Container()
  27.     End Sub
  28.  
  29. #End Region
  30.  
  31.     Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
  32.         ' Fires when the application is started
  33.     End Sub
  34.  
  35.     Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
  36.         ' Fires when the session is started
  37.     End Sub
  38.  
  39.     Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
  40.         ' Fires at the beginning of each request
  41.     End Sub
  42.  
  43.     Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As EventArgs)
  44.         ' Fires upon attempting to authenticate the use
  45.     End Sub
  46.  
  47.     Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
  48.         ' Fires when an error occurs
  49.     End Sub
  50.  
  51.     Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
  52.         ' Fires when the session ends
  53.     End Sub
  54.  
  55.     Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
  56.         ' Fires when the application ends
  57.     End Sub
  58.  
  59. End Class
  60.